This section will contain all the information about this data-set. Starting off with a literal summary, e.g., #samples, #samples per group/treatment/other factor, #covariates and #factors, etc…
some sort of table to have an overview of the meta-data.
sampleID dogID location SequencingID Batch DNAconcentration ageMonths
Length:545 Length:545 Length:545 Length:545 Length:545 Min. : 3.000 Min. : 9.00
Class :character Class :character Class :character Class :character Class :character 1st Qu.: 7.843 1st Qu.: 26.00
Mode :character Mode :character Mode :character Mode :character Mode :character Median : 10.903 Median : 62.00
Mean : 14.921 Mean : 64.27
3rd Qu.: 17.138 3rd Qu.: 84.00
Max. :119.885 Max. :143.00
NA's :36
sex group control samplingSeason PVAS CADESI CADESIall
Length:545 Length:545 Min. :0 Length:545 Min. :0.000 Min. :0.0000 Min. : 0.00
Class :character Class :character 1st Qu.:0 Class :character 1st Qu.:1.900 1st Qu.:0.0000 1st Qu.: 6.00
Mode :character Mode :character Median :0 Mode :character Median :2.900 Median :0.0000 Median :11.50
Mean :0 Mean :3.401 Mean :0.9159 Mean :19.27
3rd Qu.:0 3rd Qu.:4.850 3rd Qu.:1.0000 3rd Qu.:32.25
Max. :0 Max. :7.800 Max. :7.0000 Max. :67.00
NA's :211 NA's :212 NA's :211
batch BCS housing otherAnimals diet treats durationAD.months.
Min. :1.000 Min. :4.000 Length:545 Length:545 Length:545 Length:545 Min. : 1.50
1st Qu.:1.000 1st Qu.:5.000 Class :character Class :character Class :character Class :character 1st Qu.: 2.75
Median :3.000 Median :5.000 Mode :character Mode :character Mode :character Mode :character Median :10.50
Mean :2.448 Mean :5.192 Mean :16.92
3rd Qu.:4.000 3rd Qu.:5.000 3rd Qu.:22.00
Max. :4.000 Max. :7.000 Max. :60.00
NA's :107 NA's :307
medicalHistory previousTreatment is.neg LibrarySize sID
Length:545 Length:545 Mode :logical Min. : 2342 Length:545
Class :character Class :character FALSE:545 1st Qu.: 11711 Class :character
Mode :character Mode :character Median : 18647 Mode :character
Mean : 23884
3rd Qu.: 30595
Max. :124648
Select two covariates of interest, e.g., ‘treatment’ and ‘batch’, and display bars for the number of samples from one covariate grouping that fall into the categories of the grouping.
Technically, the function ‘prcomp’ performs a singular value decomposition to retrieve the eigenvectors for projection. Computes covariance-matrix on counts, extract the orthogonal eigenvectors and rank them by amount of variance they correspond to. Plot the samples on a grid, using selected eigenvectors as axes. This shows sample-relatedness (clustering) and can help identify the presence of confounding factors.
Aka some more plots here.
Separate samples by covariate of interest (CoI), e.g., treatment or study group, calculate the median value for every feature count and subtract it from all samples respectively. Express the remaining variability in counts per sample in a box-plot (including outliers, median values, whiskers, the whole shabang) and color them by batch membership. Repeat for all factors in the CoI and use ‘facet_grid’ to display side-by-side.
Center/Scale both features and samples. Select ‘ALL’, ‘TOPxx’ (by IQR value) or list of features to display in a heatmap with covariates of interest.
## Comes with the next update.
Select ‘ALL’ or ‘TOP’ xx features based on IQR, i.e., variability over all samples. Produce box-plot showing expression with respect to a covariate of interest (CoI)
Several different approaches are used to estimate the amount of variability attributable to covaraites of interest.
This method fits a linear model to every feature respectively and estimates the proportion of variance that the modelled covariates of interest (coi) account for. The results are visualized in a box-plot that shows the coi and the residual values. In case of the comparative analysis between two correction methods or transformations, the plot function will create panels that show the resulting boxes for the respective transformations (count-matrices since meta is the same - therefore same covariates and so on)
pRDA / pCCA: (Legendre & Legendre (2012), Table 11.5 (p. 650)) The Redundancy Analysis (RDA) A linear regression model is fitted to the feature-matrix (i.e. counts) while conditioning on one COI at a time to extract the proportion of explained variance for the variables. In this case the result is a single number(value) for every covariate in every transformation and thus the plot is one/or more panels of bar-plots.
Basically we take counts ~ group + Condition(batch) and subtract counts ~ group and see how much variance batch accounts for - then repeat with group as Condition
!! NEGATIVE COMPONENTS ARE NOT TO BE TRUSTED
Interpretation: Without a condition we can just see how much variance (i.e. squared standard deviation in the distribution of counts) our model (which is the constrained part) accounts for. Redundant terms (i.e. parts of a variable that are already explained by sth. else as for example Age and Birthdate). This is an indicator for the usefulness of the model.
By performing pRDA with a condition the algorithm computes two models, one with all variables and the other with the condition removed –> the difference in explained variance is attributed to the condition. This is also why the sum of all conditions will be close to but not exactly the total amount of explained variance!
Information concerning a number of constrained axes (RDA axes) and unconstrained axes (PCA axes) are often presented in the results of an RDA. - Inertia = sum(eigenvalues of all axes) –> proportion for one axis_1 equals (eigenvalue_1 / intertia) - The PCA axes represent the unconstrained (i.e. residual uncharacterised factors)
Algorithm - calculate the correlation of the fxs count-matrix - from there extract the eigenvectors and eigenvalues and calculate the proportion of explained variance per eigenvector (i.e. principal component) by dividing the eigenvalues by the sum of eigenvalues. Now select as many PCs as required to fill a chosen quota for the total proportion of explained variance. Iterate over all PCs and fit a linear mixed model that contains all covariates as random effect and all unique interactions between two covariates. Compute variance covariance components form the resulting model –> From there we get the Variance that each covariate(variable) contributes to this particular PC. Then just standardize variance by dividing it through the sum of variance for that model. Scale each PCs results by the proportion this PC accounted for in the first place. And then do it again by dividing it through the total amount of explained variance, i.e. the cutoff to select the number of PCs to take (but obviously not the cutoff but rather the actual values for the selected PCs). Finally take the average over each random variable and interaction term and display in a nice plot
Calculate principal components and get samplewise distances on the resulting sxPC matrix. Then iterate over all the covariates and calculate the cluster silhouette (which is basically either zero, if the cluster contains only a single element, or it is the distance to the closest different cluster minus the distance of the sample within its own cluster divided (scaled) by the maximum distance). Average over each element in a cluster for all clusters and there is the representation of how good the clustering is.